home *** CD-ROM | disk | FTP | other *** search
- (if (= @language "deutsch")
- (
- (SET Intro "Wilkommen zum Installer-Script für CD-Player")
- (SET Where "Wohin soll das CD-Player-Packet hinkopiert werden ? Es wird ein Verzeichnis namens CD-Player angelegt")
- )
- )
- (if (= @language "english")
- (
- (SET Intro "Welcome to the installer-script for CD-Player")
- (SET Where "Where do you want to place the CD-Player-package ? A drawer called CD-Player will be created")
- )
- )
-
- (MESSAGE Intro)
-
- (SET WUWU
- (ASKDIR
- (PROMPT Where)
- (DEFAULT "sys:")
- (HELP "")
- )
- )
-
- (SET BinDest (TACKON WUWU "CD-Player"))
-
- (RUN (CAT "makedir \""BinDest"\""))
-
- (COPYFILES
- (SOURCE ":DiskUtil/CD-ROM/CD-Player/")
- (DEST BinDest)
- (ALL)
- (INFOS)
- )
-